home *** CD-ROM | disk | FTP | other *** search
- /*
- File: SplashWindow.h
-
- Contains: The splash screen window
-
- Written by: Dave Falkenburg
-
- Copyright: © 1993-94 by Dave Falkenburg, all rights reserved.
-
- Change History (most recent first):
-
- */
-
- #ifndef _SPLASHWINDOW_
- #define _SPLASHWINDOW_
-
- #ifndef _WINDOW_
- #include "Window.h"
- #endif
-
- class TSplashWindow : public TWindow
- {
- public:
- TSplashWindow();
- ~TSplashWindow();
-
- virtual WindowPtr MakeNewWindow(WindowPtr behindWindow);
- };
-
- #endif
-